php forum
php mysql forum
php mysql smarty
 
Page 1 of 2 1 2 >
Topic Options
#245076 - 05/02/03 04:05 AM Finished-[6.2] Advanced Banning 1.0.1
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
Mod Name / Version: Advanced Banning <br /> <br />Description: This hack advances/replaces the normal ban masks. You can set different ban levels and edit existing bans. <br /> <br />Working Under: UBB.Threads 6.2 <br /> <br />Mod Status: Finished <br /> <br />Any pre-requisites: <br /> <br />Author(s): Astaran <br /> <br />Date: 02/15/03 <br /> <br />Credits: Dave_L, this hack is based on his user privilieges hack <br /> <br />HISTORY: <br />2003-02-07 Dave_L - 1.0.0 Original release of User privileges <br />2003-02-15 Astaran - 1.0.0 Original release of Advanced banning <br />2003-03-02 Astaran - 1.0.1 Updated "Upgrading Instructions" - added missing field in altertable command <br /> <br />Files Altered: addpost.php, doratethread.php, dorateuser.php, editpost.php, <br />mess_handler.php, newpost.php, newreply.php, sendprivate.php, <br />ubbt.inc.php, admin/menu.php, admin/banuser.php, admin/dobanuser.php <br /> <br />New Files: admin/editbanusers.php, admin/doeditbanusers.php <br /> <br />Database Altered: Yes <br /> <br />Info/Instructions: If you already installed Dave_L's user restrictions hack, only follow the upgrading instructions at the end of the file. <br /> <br />Disclaimer: Please backup every file that you intend to modify. <br />If the modification modifies the database, it's a good idea to backup your database before doing so. <br /> <br />Note: If you modify your UBB.Threads code, you may be giving up your right for "official" support from Infopop.If you need official support, you'll need to restore unmodified files. <br /> <br />


Attachments
78647-69013-advanced_baning_1_0_1.zip (64 downloads)

_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245077 - 08/10/03 12:13 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
Ok... I'm going to bite the bullet on this and ask what I'm sure you will think the ultimate stupid question.<br /><br />This is the first mod that I'm going to try that involves altering the database (I think?). <br /><br />The instructions for this mod have this:<br /><br />[]********<br />Database<br />********<br /><br />Replace "w3t_" by your custom table prefix, if applicable:<br /><br /> ALTER TABLE w3t_Banned <br /> ADD B_X_NoEditPost CHAR(1) NOT NULL DEFAULT '1', <br /> ADD B_X_NoEditProfile CHAR(1) NOT NULL DEFAULT '1', <br /> ADD B_X_NoMessage CHAR(1) NOT NULL DEFAULT '1', <br /> ADD B_X_NoPost CHAR(1) NOT NULL DEFAULT '1', <br /> ADD B_X_NoRate CHAR(1) NOT NULL DEFAULT '1',<br /> ADD B_X_NoLogin CHAR(1) NOT NULL DEFAULT '1', <br /> ADD B_Comment TEXT;[/]<br /><br />Is this something that I actually have to go into the database and do or is this something that just happens on it's own once I've modified the subsequent files?<br /><br />If this is something that I have to go into my database and do, please give me step by step instructions on how to do that? I have never messed with my database before... it scares the hell out of me!!<br /><br />Thanks in advance!<br />

Top
#245078 - 08/10/03 01:10 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Backup your database first.....<br /><br />Then go to Admin -> SQL Command<br />Then paste this in the box:<br /><br /> ALTER TABLE w3t_Banned<br />ADD B_X_NoEditPost CHAR(1) NOT NULL DEFAULT '1',<br />ADD B_X_NoEditProfile CHAR(1) NOT NULL DEFAULT '1',<br />ADD B_X_NoMessage CHAR(1) NOT NULL DEFAULT '1',<br />ADD B_X_NoPost CHAR(1) NOT NULL DEFAULT '1',<br />ADD B_X_NoRate CHAR(1) NOT NULL DEFAULT '1',<br />ADD B_X_NoLogin CHAR(1) NOT NULL DEFAULT '1',<br />ADD B_Comment TEXT;<br /><br /><br />Then you should be set. <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#245079 - 08/10/03 08:19 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Daine]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
Josh... Thank you... VERY much! <img src="/forum/images/graemlins/bow.gif" alt="" /><br /><br />I scoped it out and I can do it. I'm going to give a heads up to my members though and shut down the board for the back up. If you don't hear back from me, you'll know that all went well... <img src="/forum/images/graemlins/cool.gif" alt="" />

Top
#245080 - 08/11/03 11:20 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
I'm afraid you're going to have to hold my hand again, Josh... if you wouldn't mind? <img src="/forum/images/graemlins/crazy.gif" alt="" /><br /><br />I went to do the back up (I haven't done this before either as my server does regular back ups for me) and this is the error message that I got for each of the tables I tried to back up:<br /><br />[]Warning: stat failed for /w3t_Banned.sql (errno=2 - No such file or directory) in usr/the address to my board/ubbthreads/admin/dodbbackup.php on line 78<br />w3t_Banned.sql is 0 bytes or did not get created.<br /><br />You will need to verify that this command actually backed up the selected table(s). [/]<br /><br />Now what? <img src="/forum/images/graemlins/confused.gif" alt="" />

Top
#245081 - 08/11/03 11:22 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
DLWebmaestro Offline
Addict

Registered: 08/08/00
Posts: 1802
Loc: North Carolina
I believe that means you don't have a table called w3t_Banned

Top
#245082 - 08/11/03 11:26 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
That's a warning cause the new table is still empty. It should go away when you have banned the first user.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245083 - 08/11/03 11:29 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
DLWebmaestro Offline
Addict

Registered: 08/08/00
Posts: 1802
Loc: North Carolina
<img src="/forum/images/graemlins/yeahthat.gif" alt="" />

Top
#245084 - 08/11/03 11:44 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: eslmix]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
Hmmmm... I have several banned persons. And they keep editing their profiles and posts and such. That's why I need this mod. Help?

Top
#245085 - 08/11/03 12:15 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
Can you run this sql command under Admin -> SQL Command:<br /><br />SELECT * FROM w3t_Banned;<br /><br /><br />and post the results here?
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245086 - 08/11/03 12:30 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
Here ya go:<br /><br />[]B_Uid B_Hostname B_Reason <br />69 NULL Ban imported from old UBB installation <br />347 NULL Ban imported from old UBB installation <br />414 NULL Ban imported from old UBB installation <br />812 NULL Ban imported from old UBB installation <br />1978 NULL Ban imported from old UBB installation <br />2177 NULL Ban imported from old UBB installation <br />2194 NULL Ban imported from old UBB installation <br />2263 NULL Ban imported from old UBB installation <br />2298 NULL Ban imported from old UBB installation <br />3680 NULL <br />2895 NULL Ban imported from old UBB installation <br />3226 NULL Ban imported from old UBB installation <br />3870 NULL <br />3871 NULL <br />1031 NULL Trolling/Baiting/General disruption <br />4047 NULL disturbing emails <br />2205 NULL Trolling/Baiting/General disruption <br />3345 NULL <br />0 65.69.154.179 <br />0 67.64.147.240 tkl <br />4365 NULL tkl <br />0 64.123.190.94 tkl <br />4373 NULL tkl <br />4381 NULL tkl <br />4389 NULL tkl <br />4399 NULL tkl <br />3657 NULL flaming <br />4278 NULL general rudeness <br />2735 NULL not complying with policy <br />2480 NULL unresolve flaming/baiting behavior <br />4616 NULL baiting <br />4687 NULL tkl <br />17 NULL Baiting <br />4779 NULL spamming/non-sponsor <br />4781 NULL <br />4783 NULL <br />[/]

Top
#245087 - 08/12/03 12:58 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
Looks all good.<br />Can you please also run a "CHECK TABLE `w3t_Banned`;" to see if the table is corrupted in any way?<br /><br /><br />Do you have phpMyAdmin installed on your server so that you can try to make a backup with it? You could do a backup via command line also if you have shell access to your server.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245088 - 08/12/03 12:58 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
[]Here are the results of your command: "CHECK TABLE `w3t_Banned`;".<br />Resource id #3 row(s) affected by your query. <br />[/]<br /><br />Yes, I have phpMyAdmin and I have full access. Again, I don't touch things in there 'cuz it scares me. <img src="/forum/images/graemlins/crazy.gif" alt="" /> <br /><br />BTW... I'm just using the w3t_Banned table as an example but every single one of my tables returns the same exact error when I try to do a back up. My first thought is that the path is incorrect? The tables are in a different path? Maybe? I checked line 78 in dodbbackup.php and this is what it says:<br /><br />
Code:
      $size = filesize("{$config['dumpdir']}/$tablename.sql");
<br /><br />Any help there?

Top
#245089 - 08/12/03 01:06 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
[]I'm just using the w3t_Banned table as an example but every single one of my tables returns the same exact error when I try to do a back up. My first thought is that the path is incorrect? The tables are in a different path? Maybe? I[/]<br /><br />Yes, that should be the reason.<br />For testing purposes you can enter the same path as for the mysql log function.<br /><br />The directory should be outside of your web root and needs to be writeable.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245090 - 08/12/03 01:46 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
Which directory?<br /><br />(sorry... <img src="/forum/images/graemlins/crazy.gif" alt="" /> I really appreciate your help in this. I'm just really really ignorant right now with this software. )

Top
#245091 - 08/12/03 02:04 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
slayer60 Offline
Junior Member

Registered: 06/14/03
Posts: 1185
Loc: New Boston, NH
Make sure the path for:<br /> Path to mysql. Only necessary for using the database restore function in the admin section.<br /><br />is correct. I was getting errors like these when my path was wrong. <br /><br />Also, make sure this path:<br /> Path to mysqldump. Only necessary for using the database backup function in the admin section<br />is correct.<br /><br />Make sure this path is correct and world writable:<br />Directory to store database backups in. Only necessary for using the database backup/restore function in the admin section. This directory will need to be writeable by the webserver.<br /><br />If the directory that is pointing to isn't writable the backup will fail. This is probally the mostly likely cause of the problem you are having now.<br /><br />These are all in config. Hope this helps

Top
#245092 - 09/03/03 05:30 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: BrokenToy]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
Ok... I finally got around to getting this done and all went well. I did the database backup from mysqladmin. MUCH easier!! <br /><br />I modified all of the files and everything went smooth. I didn't blow up my board. I haven't tested it out yet by banning someone and seeing just what they can do from there... I'll be working on that later. But first, there is a glaring problem with my sendprivate.php .... as in, it's not there! Or rather when I try to send a PM, I get a blank page. This seems to be the same for everyone. I can still read the PM's that I have in my in and out boxes but can't get anything but a blank page when I try to send.<br /><br />Anyone else have this problem and how do I fix it? I didn't realize that I had even done anything to that file with this mod?!?! <img src="/forum/images/graemlins/confused.gif" alt="" />

Top
#245093 - 09/03/03 05:40 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
A blank page is usually either a missing language file or you accidentally uploaded the language file in place of the script.
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#245094 - 09/03/03 06:06 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Daine]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
I'm sorry... how could I have uploaded the language file in place of the script? I uploaded exactly what the directions told me to upload... <img src="/forum/images/graemlins/confused.gif" alt="" />

Top
#245095 - 09/03/03 06:09 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
Kel Offline
Member

Registered: 01/30/02
Posts: 246
Loc: Arizona
Wait... found my mistake. I didn't modify the sendprivate.php file... and I should have. Ignore me please. Sorry... <img src="/forum/images/graemlins/crazy.gif" alt="" />

Top
#245096 - 09/03/03 06:38 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
slayer60 Offline
Junior Member

Registered: 06/14/03
Posts: 1185
Loc: New Boston, NH
Hmmm, what happened, I thought there was a new post in here but I guess not. <img src="/forum/images/graemlins/grin.gif" alt="" />

Top
#245097 - 10/01/03 06:45 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Organizer Offline
User

Registered: 08/17/02
Posts: 34
Will this work for 6.3 as well?
_________________________
Organizer

Top
#245098 - 10/01/03 07:44 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Billyo]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
No, but I'm currently updating all my mods to version 6.3.2.<br />I'm looking forward to release some of them over the weekend.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245099 - 11/10/03 07:49 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
smilesforu Offline
Junior Member

Registered: 01/31/02
Posts: 676
Did this make it to a new release? would like to upgrade it in my 6.4 This is a great hack thanks for sharing it.

Top
#245100 - 11/18/03 01:45 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Kelly]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
I reworked it for 6.3.2 but haven't documented it yet.<br />But this version should work with 6.4 with a few changes.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245101 - 12/08/03 11:30 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
BryanDS Offline
Junior Member

Registered: 11/15/01
Posts: 135
All my mods all of a sudden have access to the ban feature..? Is this supposed to happen? If so, can someone give me the code to add it back in :-)

Top
#245102 - 04/23/04 02:15 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
PaNTerSan Offline
Journeyman

Registered: 03/19/04
Posts: 122
Loc: EU, Slovenia
This mod could be improved<br />[]Astaran said:<br />This hack advances/replaces the normal ban masks. You can set different ban levels and edit existing bans. <br />[/]<br />1st of all you could use bitwise operators instead of adding 6 (!) rows in w3t_Banned table you would add only one.<br />With bitwise masks you also get free hands when one wants to add another ban mask: no database altering any more.<br /><br />On our forum we have a lot of PR's and spammers who sometimes get overwhelming with posting.<br /><br />Now, banning them from whole site would be excessive so why not ban them just from that one forum. This would be level before next level ban - in our case one day ban. It gives time to moderator of the forum to clean the mess they've made and no body gets really pissed-off: they coll down <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" /><br /><br />Implementing per forum ban mask is beyond my php []http://pages.prodigy.net/rogerlori1/emoticons/bigblush.gif[/] and to be honest I don't have the money to pay attention: no time -> to much exams <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" />
_________________________
Kind regards,
PaNTerSan

Top
#245103 - 04/23/04 04:05 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Brandon Long]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
Sure, most of the hacks could be improved. <img src="http://www.ubbdev.com/forum/images/graemlins/wink.gif" alt="" /><br />Bitwise operators would be a good enhancement. Adding and editing new ban levels wasn't and issue while creating that hack. Doing so will require some work, but it's posssible. You only have to change the function that performs the ban check.<br /><br />Enhancing the hack to allow a per forum banning would require more modifications. You'll have to improve the permission system of threads to allows to exlude certain members. Currently, all scripts only check if the user is in a group that has enough rights to perform the action.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245104 - 04/24/04 07:33 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
PaNTerSan Offline
Journeyman

Registered: 03/19/04
Posts: 122
Loc: EU, Slovenia
[] Currently, all scripts only check if the user is in a group that has enough rights to perform the action. [/] <br />Shouldn't check_ban handle this []http://www.drogart.org/ubbthreads/images/graemlins/fragend013.gif[/]. <br /><br />I assume check_ban would take care of bitmask checking and w3t_users would get U_BannedFrom column. This would contain a comma separated list (string) with keywords (BO_keyword) of forums from which user is banned (e.g "ubb1,ubb2,ubb3").<br /><br />So when user clicks on a post on a forum he is banned from, he gets a nice invitation to go chill-out and watch the birds or smth <img src="http://www.ubbdev.com/forum/images/graemlins/cool.gif" alt="" />
_________________________
Kind regards,
PaNTerSan

Top
#245105 - 04/24/04 08:25 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
[]Astaran said:<br />But this version should work with 6.4 with a few changes. [/]<br /><br />I would like to install this on my 6.4 board... but which changes should I make <img src="http://www.ubbdev.com/forum/images/graemlins/confused.gif" alt="" /><br /><br />Thank you for your help!<br /><br />Pasqual

Top
#245106 - 04/25/04 10:11 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
PaNTerSan Offline
Journeyman

Registered: 03/19/04
Posts: 122
Loc: EU, Slovenia
[]Astaran said:<br />Enhancing the hack to allow a per forum banning would require more modifications. You'll have to improve the permission system of threads to allows to exlude certain members. Currently, all scripts only check if the user is in a group that has enough rights to perform the action. [/]<br /> YAB 0.9.0 was made in less than 4 hours with my poor knowledge of php, html and mysql []http://www.drogart.org/ubbthreads/images/graemlins/coffeedrinker.gif[/]
_________________________
Kind regards,
PaNTerSan

Top
#245107 - 04/25/04 10:12 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: 10k]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
I'm still on 6.3.2 on my board, so I can't provide any instructions for 6.4.<br />But I'll start on migrating my hacks to 6.5 when the beta is released.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245108 - 04/25/04 10:23 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Brandon Long]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
[]PaNTerSan said:<br />YAB 0.9.0 was made in less than 4 hours with my poor knowledge of php, html and mysql []http://www.drogart.org/ubbthreads/images/graemlins/coffeedrinker.gif[/] [/]<br />Fine that you came up with a different and easier solution. <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" />

Top
#245109 - 05/12/04 10:06 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
Does "ban IP" mean that the banned person cannot even (anonymously) view our forums ?

Top
#245110 - 09/07/04 04:15 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: 10k]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
I'd love to see this mod for 6.5! <img src="http://www.ubbdev.com/forum/images/graemlins/laugh.gif" alt="" />

Top
#245111 - 09/09/04 11:21 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: 10k]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
Haven't started to port it over yet, but I'll do it.<br />I think I'll integrate it into the new member management area instead of using a seperate gui.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245112 - 09/11/04 04:42 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
[]Astaran said:<br />Haven't started to port it over yet, but I'll do it.<br />I think I'll integrate it into the new member management area instead of using a seperate gui. [/]<br /><br />That's great to hear! <img src="http://www.ubbdev.com/forum/images/graemlins/laugh.gif" alt="" /><br /><br />Maybe you could also add the following ban:<br />I've banned several IP's, but somehow they are still able to login. They use the SEARCH feature and lot, and that's something I would also like to ban them from.

Top
#245113 - 11/13/04 06:05 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: 10k]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
Haven't been on the forum for some time now and I would still love to have this mod in 6.5 <img src="http://www.ubbdev.com/forum/images/graemlins/laugh.gif" alt="" /><br /><br />Is there anyone who could 'upgrade' this mod to work in 6.5 ? <img src="http://www.ubbdev.com/forum/images/graemlins/thankyousign.gif" alt="" />

Top
Page 1 of 2 1 2 >



Moderator:  Ian_W 
Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks